home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 41 / Issue 41.iso / pc / PCSoftware / Netscape 6 Official Release / nim.xpi / bin / chrome / aim.jar / content / aim / chatInviteBuddy.xul < prev    next >
Encoding:
Extensible Markup Language  |  2000-09-14  |  4.2 KB  |  107 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://aim/skin/Chat.css" type="text/css"?>
  3.  
  4. <!DOCTYPE window SYSTEM "chrome://aim/locale/Chat.dtd">
  5.  
  6.  
  7. <window 
  8.     xmlns:html="http://www.w3.org/1999/xhtml"
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  11.     id="AimChatInviteBuddy" class="dialog"
  12.     name="Buddy Chat Invitation"
  13.     title="&chatInviteBuddy.title;"
  14.     onload="chatInviteBuddyOnWinLoad()"
  15.     onunload="chatInviteBuddyOnWinUnLoad()"
  16.     orient="vertical" style="width: 35em;"
  17.     screenX="10" screenY="10"
  18.     windowtype="Aim:ChatInvite"
  19.     persist="screenX screenY "
  20.     >
  21.  
  22.  <script language="JavaScript" src="chrome://aim/content/aimHelpers.js" />
  23.  <script language="JavaScript" src="chrome://aim/content/Aim.js" />
  24.  <script language="JavaScript" src="chrome://aim/content/AimIM.js" />
  25.  <script language="JavaScript" src="chrome://aim/content/chatInviteBuddy.js" />
  26.  <script language="JavaScript" src="chrome://aim/content/AimSession.js" />
  27.  <script language="JavaScript" src="chrome://communicator/content/tasksOverlay.js" />
  28.     
  29.   <deck id="cibdeck001" index="0" flex="1" >
  30.     <box id="zero_blank" flex="3"/>    
  31.     <box id="cibcontentwrapper" orient="vertical" align="center" flex="3">
  32.         <titledbox flex="2" >
  33.             <title value="&whoToInvite.label;" />
  34.             <textfield multiline="true" rows="5" flex="1" id="invitedscreennames"/>
  35.       </titledbox>
  36.       <titledbox flex="2" >
  37.         <title value="&inviteMessage.label;" />
  38.         <textfield multiline="true" rows="5" flex="1" id="invitationmsg" value="&inviteMessage2.label;"/>
  39.       </titledbox>    
  40.       <titledbox>
  41.         <title value="&roomName.label;" />
  42.             <textfield type="text" id="buddychatroomname" flex="1" />
  43.       </titledbox>    
  44.       <box autostretch="never">
  45.         <spring flex="1"/>
  46.         <button value="&cancel.label;" oncommand="window.close()"/>
  47.         <button value="&invite.label;" oncommand="chatInviteBuddyCmdInvite()"/>
  48.       </box>    
  49.     </box>    
  50.     <box id="incomingChatReq" orient="vertical" flex="3">
  51.         <box>
  52.         <text class="label" value="&inviteFrom.label;" />
  53.         <text class="label" value="[screen name]" id="chatRendezvousScreenName001"/>
  54.         <text class="label" value="[warning level]" id="chatRendezvousWarningLevel001"/>
  55.       </box>
  56.         <box orient="horizontal" >
  57.             <text class="label" value="[screen name]" id="chatRendezvousScreenName002" />
  58.             <text class="label" value="&writes.label;" />
  59.       </box>
  60.       <textfield multiline="true" rows="5" flex="1" id="chatRendezvousInvitationMsg" value="&inviteMessage2.label;" />
  61.       <spring flex="1" />
  62.       <box>
  63.         <text class="label" value="&roomName.label;" />
  64.         <text class="label" value="[chat room name]" id="chatRendezvousRoomName001"/>
  65.       </box>
  66.       <box>    
  67.         <text class="label" value="&inviteRecd.label;" />
  68.         <text class="label" value="[invite received time]" id="chatRendezvousChatRoomDate" />
  69.       </box>
  70.       <box autostretch="never" valign="middle" align="center">
  71.         <button value="&warnButton.label;" oncommand="cmdChatIncomingWarn()" />
  72.         <button value="&blockButton.label;" oncommand="cmdChatIncomingBlock()" />
  73.         <!-- <button value="&getInfo.label;" oncommand="cmdChatIncomingGetInfo()" /> -->
  74.         <button value="&IM.label;" oncommand="cmdChatIncomingIM()" />
  75.       </box>
  76.       <box>
  77.         <spring flex="1"/>
  78.         <button value="&decline.label;" oncommand="chatInviteBuddyCmdDeclineRendezvous()"/>
  79.         <button value="&accept.label;" oncommand="chatInviteBuddyCmdAcceptRendezvous()"/>
  80.       </box>    
  81.     </box>
  82.  
  83.     <box id="chatroomprogress" flex="1"  >
  84.       <grid flex="1">
  85.         <columns>
  86.             <column flex="1"/>
  87.             <column flex="3" />
  88.             <column flex="1"/>
  89.         </columns>
  90.         <rows>
  91.             <row flex="2">
  92.                  <box/>
  93.                 <box orient="vertical" autostretch="never" align="center">
  94.                     <text class="label" value="&progress.label;" />
  95.                     <progressmeter mode="undetermined" width="50" />
  96.                 </box>
  97.                 <box/>
  98.             </row>
  99.         </rows>
  100.       </grid>
  101.     </box>
  102.     
  103.   </deck>    
  104.  
  105. </window>    
  106.  
  107.